module Base
{
  item theTigerSFX
  {
    DisplayCategory = Junk,
    Weight	=	0.1,
    Type	=	Normal,
    DisplayName	=	TigerSFX,
    Icon	=	tankboom1,
  }
  sound thetigerexplode
	{
		category = tank,
		master = Ambient,
		clip
		{
			file = media/sound/thetigertank.wav,
			volume = 1,
		}
	}
  sound thetigerfire
	{
		category = tank,
		master = Ambient,
		clip
		{
			file = media/sound/thetigerfire.wav,
			volume = 1,
		}
	}

   item theTigershell
    {
		DisplayCategory = Ammo,
        Weight	=	0.5,
        Type	=	Normal,
        DisplayName	=	TheTigerShell,
        Icon	=	tankshell,
	}
	item thetigershellbox
    {
		DisplayCategory = Ammo,
        Weight	=	0.5,
        Type	=	Normal,
        DisplayName	=	TheTigerShellBOX,
        Icon	=	tankshellbox,
	}

	recipe Open Box of The Tiger Shell
    {
        thetigershellbox,
        Result:theTigershell=40,
        Sound:PutItemInBag,
        Time:5.0,
    }
	recipe Place The Tiger Shell in Box
    {
        theTigershell=40,
        Result:thetigershellbox,
        Sound:PutItemInBag,
        Time:5.0,
    }


}